From d456d49ce61f8ed238877e3eda23236ad4e9b944 Mon Sep 17 00:00:00 2001 From: Tim Deegan Date: Thu, 21 Sep 2006 14:56:28 +0100 Subject: [PATCH] Pygrub: add /var/lib/xen to the install tree. (Pygrub uses /var/lib/xen to store fifos and image files.) Signed-off-by: Tim Deegan --- tools/pygrub/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/pygrub/Makefile b/tools/pygrub/Makefile index fab70ffc30..de240f401f 100644 --- a/tools/pygrub/Makefile +++ b/tools/pygrub/Makefile @@ -12,9 +12,11 @@ build: ifndef XEN_PYTHON_NATIVE_INSTALL install: all CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --prefix="" + $(INSTALL_DIR) -p $(DESTDIR)/var/lib/xen else install: all CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" + $(INSTALL_DIR) -p $(DESTDIR)/var/lib/xen endif .PHONY: clean -- 2.30.2